SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 31760: Cross Environment Data Access (CEDA) note might occur if you query SASHELP.VTABLE or use SAS Desktop Application in a DBCS version of SAS

DetailsCodeResultsAboutRate It

During SAS installation, a post-processing step builds five indexed SAS data sets for the Desktop application. They are: DESKACT, DESKFD, DESKOBJ, FEEDDET, and FEEDER. For DBCS installations, this step produces Cross Environment Data Access (CEDA) notes in the SAS Log for each of the data sets. An example of the CEDA note follows:

NOTE: Data file SASHELP.FEEDER.DATA is in a format native to another host
or the file encoding does not match the session encoding. Cross Environment
Data Access will be used, which may require additional CPU resources and 
reduce performance.

To remove the CEDA notes, you can use PROC COPY with the NOCLONE option on the selected data sets. For example:

proc copy in=sashelp out=new noclone memtype=data;
   select deskact deskfd deskobj feeddet feeder;
run;

You can also use the DATA step with the ENCODING option:

data sashelp.deskact(encoding=sjis);
   set sashelp.deskact;
run;

The five SAS data files with indexes are stored in "SASROOT/nls/en/sascfg" on UNIX and in "!SASROOT\nls\1d\sascfg" on the PC.

Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemBase SASTru64 UNIX9.1 TS1M09.3 TS1M0
OpenVMS Alpha9.1 TS1M09.3 TS1M0
Linux9.1 TS1M09.3 TS1M0
HP-UX IPF9.1 TS1M09.3 TS1M0
64-bit Enabled Solaris9.1 TS1M09.3 TS1M0
64-bit Enabled HP-UX9.1 TS1M09.3 TS1M0
64-bit Enabled AIX9.1 TS1M09.3 TS1M0
Microsoft Windows XP Professional9.1 TS1M09.3 TS1M0
Microsoft Windows Server 2003 Standard Edition9.1 TS1M09.3 TS1M0
Microsoft Windows Server 2003 Enterprise Edition9.1 TS1M09.3 TS1M0
Microsoft Windows Server 2003 Datacenter Edition9.1 TS1M09.3 TS1M0
Microsoft Windows NT Workstation9.1 TS1M0
Microsoft Windows 2000 Professional9.1 TS1M0
Microsoft Windows 2000 Server9.1 TS1M0
Microsoft Windows 2000 Datacenter Server9.1 TS1M0
Microsoft Windows 2000 Advanced Server9.1 TS1M0
Microsoft Windows Server 2003 Enterprise 64-bit Edition9.1 TS1M09.3 TS1M0
Microsoft Windows Server 2003 Datacenter 64-bit Edition9.1 TS1M09.3 TS1M0
Microsoft® Windows® for 64-Bit Itanium-based Systems9.1 TS1M09.3 TS1M0
z/OS9.1 TS1M09.3 TS1M0
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.